summaryrefslogtreecommitdiff
path: root/src/pages/[locale]/staticPaths.ts
blob: 842385108407b33a9bf02912ea8df9eeb1dc0c98 (plain)
1
2
3
4
5
6
7
8
9
10
import type Locale from '../../types/Locale';

// Defines what values to insert into the [locale] URL path parameter
// when generating a static site
const staticPaths: { params: { locale: Locale } }[] = [
  { params: { locale: 'sco' } },
  { params: { locale: 'en-GB' } },
]

export default staticPaths;